home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 January: Mac OS SDK / Dev.CD Jan 98 SDK1.toast / Development Kits (Disc 1) / QuickDraw 3D / Samples / SampleCode / Plug-in - QuickDraw Renderer / IRShell.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-14  |  666 b   |  27 lines  |  [TEXT/CWIE]

  1. /******************************************************************************\
  2.                                                                         
  3.         Module:        IRShell.h                                            
  4.                                                                             
  5.         Purpose:     Interactive rendering plug-in shell for QD3D                            
  6.                                                                         
  7.         Author:        Sun-Inn Shih                                    
  8.                                                                         
  9.         Copyright (C) 1993-96 Apple Computer, Inc.  All rights reserved.    
  10.                                                                             
  11. \*****************************************************************************/
  12. #ifndef _IRSHELL_H_
  13. #define _IRSHELL_H_
  14. #include <stdio.h>
  15.  
  16. struct irsData
  17.     {
  18.     TQ3Matrix4x4 localToFrustum ;
  19.     float XScale ;
  20.     float YScale ;
  21.     float XOffset ;
  22.     float YOffset ;
  23.     } ;
  24.  
  25. extern irsData* gdata;
  26.  
  27. #endif